home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / telecomm / sticpsrc.lzh / SOURCE.ARC / FINGER.H < prev    next >
C/C++ Source or Header  |  1990-01-02  |  699b  |  27 lines

  1.  
  2. /*
  3.  *
  4.  *    Finger support...
  5.  *
  6.  *    Finger header defines.    Written by Michael T. Horne - KA7AXD.
  7.  *    Copyright 1988 by Michael T. Horne, All Rights Reserved.
  8.  *    Permission granted for non-commercial use and copying, provided
  9.  *    that this notice is retained.
  10.  *
  11.  */
  12.  
  13. #define FINGNAMELEN    8    /* max len of user name */
  14.  
  15. /* finger protocol control block */
  16. struct finger {
  17.     struct tcb    *tcb;        /* pointer to associated tcb */
  18.     struct session    *session;    /* pointer to finger session */
  19.     char        *user;        /* name of user to finger */
  20.     FILE        *fp;        /* open file containing finger info */
  21. };
  22. #define NULLFING    (struct finger *) 0
  23.  
  24. extern char        fingersuf[],    /* see files.c */
  25.             FINGERPATH[];
  26.  
  27.